home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / gift40b7.zip / PCBVIEW.BAT < prev    next >
DOS Batch File  |  1991-12-07  |  255b  |  21 lines

  1. @echo off
  2. >pcbview.txt
  3. if %@ext[%1] == gif goto gif
  4. if %@ext[%1] == zip goto zip
  5. if %@ext[%1] == lzh goto lzh
  6. goto end
  7.  
  8. :gif
  9. giftest %1 /P:1
  10. goto end
  11.  
  12. :zip
  13. ziptv -p1 >pcbview.txt %1
  14. goto end
  15.  
  16. :lzh
  17. lha l %1 > pcbview.txt
  18. goto end
  19.  
  20. :end
  21.